bytecode interpreter - определение. Что такое bytecode interpreter
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое bytecode interpreter - определение

PROGRAM THAT EXECUTES SOURCE CODE WITHOUT A SEPARATE COMPILATION STEP
Interpreted language; Interpreted Language; Interpreted programming language; Interpreter (computer software); Self-interpreter; Interpreter (programming); Interpreted (programming languages); Runtime interpreter; Evaluator; Metainterpreter; Interpretive language; Interpretive Languages; Interprted language; Interpreter (computer science); Interpreter computing; Interpreted computer language; Bytecode interpreter; Code interpretation; Interpretive programming language; Code interpreter; Interpreter (software); Abstract syntax tree interpreter; Compreter; Compiler-interpreter; Compiler–interpreter
  • static libraries]] are assembled into a new library or executable
  • W3sDesign Interpreter Design Pattern UML
Найдено результатов: 98
Interpreter (computing)         
In computer science, an interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program. An interpreter generally uses one of the following strategies for program execution:
evaluator         
<theory> Geoff Burn defines evaluators E0, E1, E2 and E3 which when applied to an expression, reduce it to varying degrees. E0 does no evaluation, E1 it evaluates to {weak head normal form} (WHNF), E2 evaluates the structure of a list, i.e. it evaluates it either to NIL or evaluates it to a CONS and then applies E2 to the second argument of the CONS. E3 evaluates the structure of a list and evaluates each element of the list to WHNF. This concept can be extended to data structures other than lists and forms the basis of the {evaluation transformer} style of strictness analysis. (1994-12-12)
Ku (fictional language)         
2005 THRILLER MOVIE DIRECTED BY SYDNEY POLLACK
The interpreter; Ku (language); Ku (fictional language)
Ku is a fictional language appearing in the 2005 drama/thriller film The Interpreter. In the film, Ku is a language spoken in the fictional African country of Matobo.
Interpreter (journal)         
  • 150px
JOURNAL
Interpreter: A Journal of Mormon Scripture; Interpreter Foundation; Interpreter: A Journal of Latter-day Saint Faith and Scholarship; The Interpreter Foundation; Interpreter: A Journal of Latter-day Saint Faith & Scholarship; Interpreter: A Journal of Latter-Day Saint Faith and Scholarship; Interpreter: A Journal of Latter-Day Saint Faith & Scholarship
Interpreter: A Journal of Latter-day Saint Faith and Scholarship (formerly known as "Interpreter: A Journal of Mormon Scripture") is a nonprofit, peer-reviewed, and educational academic journal published by the Interpreter Foundation primarily covering topics related to the canon of scriptures of The Church of Jesus Christ of Latter-day Saints, Mormon studies, and Latter-day Saint apologetics. It was established in July 2012 by the Interpreter Foundation with Daniel C.
Interpreter of Maladies         
SHORT STORY COLLECTION BY JHUMPA LAHIRI
Interpreter of maladies; Motarjem e Dardhā; The Interpreter of Maladies
Interpreter of Maladies is a book collection of nine short stories by American author of Indian origin Jhumpa Lahiri published in 1999. It won the Pulitzer Prize for Fiction and the Hemingway Foundation/PEN Award in the year 2000 and has sold over 15 million copies worldwide.
Interpreter (disambiguation)         
WIKIMEDIA DISAMBIGUATION PAGE
The interpreter; The Interpreter
An interpreter is someone who performs interpretation, not just translation, of speech or sign from a language into another. This may be done orally, or via other methodology.
Java bytecode         
INSTRUCTION SET OF THE JAVA VIRTUAL MACHINE
Java byte-code; Java Bytecode; JVM bytecode; Java byte code; Java assembler
In computing, Java bytecode is the bytecode-structured instruction set of the Java virtual machine (JVM), a virtual machine that enables a computer to run programs written in the Java programming language and several other programming languages, see List of JVM languages.
List of Java bytecode instructions         
WIKIMEDIA LIST ARTICLE
Java bytecode instruction listings
This is a list of the instructions that make up the Java bytecode, an abstract machine language that is ultimately executed by the Java virtual machine. The Java bytecode is generated from languages running on the Java Platform, most notably the Java programming language.
Interpreter pattern         
APPROACH IN COMPUTER PROGRAMMING
Interpreter Pattern
In computer programming, the interpreter pattern is a design pattern that specifies how to evaluate sentences in a language.
Interpreter officer         
Military interpreter
An interpreter officer or army interpreter is a commissioned officer of an armed force, who interprets and/or translates to facilitate military operation. Interpreter officers are used extensively in multinational operations in which two or more countries that do not share a common language are undertaking a joint operation, or expeditionary missions in which the communication with the local population is crucial but limited by lack of language proficiency among the expeditionary force personnel.

Википедия

Interpreter (computing)

In computer science, an interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program. An interpreter generally uses one of the following strategies for program execution:

  1. Parse the source code and perform its behavior directly;
  2. Translate source code into some efficient intermediate representation or object code and immediately execute that;
  3. Explicitly execute stored precompiled bytecode made by a compiler and matched with the interpreter Virtual Machine.

Early versions of Lisp programming language and minicomputer and microcomputer BASIC dialects would be examples of the first type. Perl, Raku, Python, MATLAB, and Ruby are examples of the second, while UCSD Pascal is an example of the third type. Source programs are compiled ahead of time and stored as machine independent code, which is then linked at run-time and executed by an interpreter and/or compiler (for JIT systems). Some systems, such as Smalltalk and contemporary versions of BASIC and Java may also combine two and three. Interpreters of various types have also been constructed for many languages traditionally associated with compilation, such as Algol, Fortran, Cobol, C and C++.

While interpretation and compilation are the two main means by which programming languages are implemented, they are not mutually exclusive, as most interpreting systems also perform some translation work, just like compilers. The terms "interpreted language" or "compiled language" signify that the canonical implementation of that language is an interpreter or a compiler, respectively. A high-level language is ideally an abstraction independent of particular implementations.